github.com/andybalholm/brotli.hasherCommon.params (field)
19 uses
github.com/andybalholm/brotli (current package)
h5.go#L45: h.hash_shift_ = 32 - h.params.bucket_bits
h5.go#L46: h.bucket_size_ = uint(1) << uint(h.params.bucket_bits)
h5.go#L47: h.block_size_ = uint(1) << uint(h.params.block_bits)
h5.go#L76: var offset uint = minor_ix + uint(key<<uint(h.params.block_bits))
h5.go#L100: prepareDistanceCache(distance_cache, h.params.num_last_distances_to_check)
h5.go#L129: for i = 0; i < uint(h.params.num_last_distances_to_check); i++ {
h5.go#L169: bucket = buckets[key<<uint(h.params.block_bits):]
h6.go#L46: h.hash_shift_ = 64 - h.params.bucket_bits
h6.go#L47: h.hash_mask_ = (^(uint64(0))) >> uint(64-8*h.params.hash_len)
h6.go#L48: h.bucket_size_ = uint(1) << uint(h.params.bucket_bits)
h6.go#L49: h.block_size_ = uint(1) << uint(h.params.block_bits)
h6.go#L78: var offset uint = minor_ix + uint(key<<uint(h.params.block_bits))
h6.go#L102: prepareDistanceCache(distance_cache, h.params.num_last_distances_to_check)
h6.go#L131: for i = 0; i < uint(h.params.num_last_distances_to_check); i++ {
h6.go#L171: bucket = buckets[key<<uint(h.params.block_bits):]
hash.go#L9: params hasherParams
hash.go#L319: common.params = params.hasher
hash_composite.go#L52: common_a.params = h.params.hasher
hash_composite.go#L59: common_b.params = h.params.hasher
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |